home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / STORE.DXR / Internal_4_exit Button.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  545 b   |  22 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   set the member of sprite the currentSpriteNum to "exit.roll"
  4.   set the text of field "rollover text" to "Click here to exit the store."
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9.   set the member of sprite the currentSpriteNum to "exit"
  10.   set the text of field "rollover text" to " "
  11. end
  12.  
  13. on mouseDown me
  14.   puppetSound(0)
  15.   puppetSound(1, 0)
  16.   go(1, "main")
  17. end
  18.  
  19. on getBehaviorDescription
  20.   return "Handles the rollover, cursor swap, and user click on the exit button. Will go to a movie called 'main' on mouseDown"
  21. end
  22.